Dmitry Antipov [Tue, 8 Oct 2013 14:56:15 +0000 (18:56 +0400)]
* dispnew.c (set_window_update_flags): Add buffer arg. Adjust comment.
(redraw_frame, update_frame): Adjust users.
* dispextern.h (set_window_update_flags): Adjust prototype.
* xdisp.c (redisplay_internal): When updating all frames with zero
windows_or_buffers_changed, assume that only the windows that shows
current buffer should be really updated.
Glenn Morris [Tue, 8 Oct 2013 10:17:43 +0000 (06:17 -0400)]
Auto-commit of generated files.
Dmitry Antipov [Tue, 8 Oct 2013 06:40:09 +0000 (10:40 +0400)]
Do not allocate huge temporary memory areas and objects while encoding
for file I/O, thus reducing an enormous memory usage for large buffers.
See http://lists.gnu.org/archive/html/emacs-devel/2013-10/msg00180.html.
* coding.h (struct coding_system): New member raw_destination.
* coding.c (setup_coding_system): Initialize it to zero.
(encode_coding_object): If raw_destination is set, do not create
dst_object. Add comment.
* fileio.c (toplevel): New constant E_WRITE_MAX.
(e_write): Do not encode more than E_WRITE_MAX characters per one loop
iteration. Use raw_destination if E_WRITE_MAX characters is encoded.
Teemu Likonen [Tue, 8 Oct 2013 06:17:49 +0000 (02:17 -0400)]
* indent.el: Provide interactive indent-rigidly mode. Use lexical-binding.
(indent-rigidly--current-indentation): New function.
(indent-rigidly-map): New var.
(indent-rigidly): Use it to provide interactive mode.
(indent-region): Add progress reporter.
(tab-stop-list): Make it implicitly extend to infinity by repeating the
last step.
(indent--next-tab-stop): New function to implement this behavior.
(tab-to-tab-stop, move-to-tab-stop): Use it.
Fixes: debbugs:8196
Jan Djärv [Tue, 8 Oct 2013 06:12:40 +0000 (08:12 +0200)]
* nsterm.m (windowDidExitFullScreen:):
(toggleFullScreen:): Change NS_IMPL_COCOA to HAVE_NATIVE_FS.
Bastien Guerry [Tue, 8 Oct 2013 06:02:20 +0000 (08:02 +0200)]
* register.el (insert-register): Fix 2013-10-07T01:28:34Z!sdl.web@gmail.com.
Paul Eggert [Tue, 8 Oct 2013 05:26:41 +0000 (22:26 -0700)]
Complete ChangeLog entry that was inadvertently truncated.
Paul Eggert [Tue, 8 Oct 2013 05:13:21 +0000 (22:13 -0700)]
Fix race where emacs aborts when sent SIGTERM.
* keyboard.c (unblock_input_to): Don't process pending signals
if a fatal error is in progress.
Fixes: debbugs:15534
Paul Eggert [Tue, 8 Oct 2013 05:12:29 +0000 (22:12 -0700)]
ChangeLog consistency.
Stefan Monnier [Tue, 8 Oct 2013 05:10:10 +0000 (01:10 -0400)]
* lisp/progmodes/perl-mode.el: Use lexical-binding.
Remove redundant :group args.
(perl-nochange): Change default to be closer to other major modes's
standard behavior.
(perl-indent-line): Don't consider text on current line as a
valid beginning of function from which to indent.
Stefan Monnier [Tue, 8 Oct 2013 04:30:31 +0000 (00:30 -0400)]
* lisp/emacs-lisp/backquote.el (backquote-process): Catch uses of , and ,@
with more than one argument.
Fixes: debbugs:15538
Paul Eggert [Tue, 8 Oct 2013 04:25:33 +0000 (21:25 -0700)]
* lisp.h (bits_word, BITS_WORD_MAX): New type and macro.
All uses of 'size_t' and 'SIZE_MAX' changed to use them, when
they're talking about words in Lisp bool vectors.
(BITS_PER_BITS_WORD): Rename from BITS_PER_SIZE_T. All uses changed.
Stefan Monnier [Tue, 8 Oct 2013 03:48:01 +0000 (23:48 -0400)]
* lisp/mpc.el (mpc-songs-jump-to): Adjust to different playlist format.
Stefan Monnier [Tue, 8 Oct 2013 03:47:24 +0000 (23:47 -0400)]
* lisp/vc/pcvs.el: Use lexical-binding.
(cvs-temp-buffer, cvs-make-cvs-buffer): Pass some vars in the lexical
environment of `eval'.
(cvs-mode-run, cvs-mode-do): Change `postproc' to be a function rather
than a list of expressions. Adjust callers.
* lisp/vc/pcvs-defs.el (cvs-postprocess): Remove, unused.
Dmitry Gutov [Mon, 7 Oct 2013 23:03:16 +0000 (02:03 +0300)]
Refine the last change
Dmitry Gutov [Mon, 7 Oct 2013 23:01:23 +0000 (02:01 +0300)]
* lisp/progmodes/ruby-mode.el (ruby-smie--implicit-semi-p): Handle the
case of the dot in a chained method call being on the following
line.
Paul Eggert [Mon, 7 Oct 2013 21:37:19 +0000 (14:37 -0700)]
Improve support for popcount and counting trailing zeros.
Do this by using the Gnulib modules for this.
This should generate faster code on non-GCC, non-MSC platforms,
and make the code a bit more portable, at least in theory.
* admin/merge-gnulib (GNULIB_MODULES): Add count-one-bits
and count-trailing-zeros.
* lib/count-one-bits.c, lib/count-one-bits.h:
* lib/count-trailing-zeros.c, lib/count-trailing-zeros.h:
* m4/count-one-bits.m4, m4/count-trailing-zeros.m4:
New files, copied from gnulib.
* lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
* nt/gnulib.mk: Merge changes from lib/gnulib.mk.
* src/data.c: Include <count-one-bits.h>, <count-trailing-zeros.h>.
(USE_MSC_POPCOUNT, POPCOUNT_STATIC_INLINE)
(NEED_GENERIC_POPCOUNT, popcount_size_t_generic)
(popcount_size_t_msc, popcount_size_t_gcc):
Remove; now done by Gnulib.
(popcount_size_t): Now a macro that defers to Gnulib.
(count_trailing_zero_bits): Return int, for consistency with
Gnulib and because Emacs prefers signed to unsigned int.
Don't assume that size_t is either unsigned int or unsigned long
or unsigned long long.
(size_t_to_host_endian): Do not assume that size_t is either
exactly 32 or exactly 64 bits wide.
* src/lisp.h (BITS_PER_SIZE_T): Define consistently with BITS_PER_LONG
etc., so that it's now an enum constant, not a macro.
No need to assume that it's either 32 or 64.
Fixes: debbugs:15550
Jan Djärv [Mon, 7 Oct 2013 20:00:25 +0000 (22:00 +0200)]
* nsterm.m (windowDidEnterFullScreen:): setPresentationOptions only
on >= 10.7.
Stefan Monnier [Mon, 7 Oct 2013 18:51:26 +0000 (14:51 -0400)]
* lisp/electric.el (electric-indent-inhibit): New var.
(electric-indent-post-self-insert-function): Use it.
* lisp/progmodes/python.el (python-mode): Set it.
Stefan Monnier [Mon, 7 Oct 2013 16:56:51 +0000 (12:56 -0400)]
* lisp/emacs-lisp/smie.el (smie-next-sexp): Refine last fix.
* lisp/progmodes/ruby-mode.el (ruby-smie-rules): Tweak handling of
open braces.
Stefan Monnier [Mon, 7 Oct 2013 15:40:24 +0000 (11:40 -0400)]
* lisp/textmodes/css-mode.el (css-smie-rules): Fix indentation.
(css-mode): Use electric-indent-chars.
Fixes: debbugs:15467
Dmitry Antipov [Mon, 7 Oct 2013 15:11:17 +0000 (19:11 +0400)]
* xdisp.c (handle_fontified_prop): Prefer ptrdiff_t to int where needed.
Use bool for boolean.
Dmitry Antipov [Mon, 7 Oct 2013 15:03:33 +0000 (19:03 +0400)]
* insdel.c (insert_from_gap): Prefer ptrdiff_t to int where needed.
Stefan Monnier [Mon, 7 Oct 2013 13:54:48 +0000 (09:54 -0400)]
* lisp/nxml/nxml-mode.el: Use lexical-binding and syntax-propertize.
(font-lock-beg, font-lock-end): Move before first use.
(nxml-mode): Use syntax-propertize-function.
(nxml-after-change, nxml-after-change1): Adjust accordingly.
(nxml-extend-after-change-region): Remove.
* lisp/nxml/nxml-ns.el: Use lexical-binding.
(nxml-ns-save): Use `declare'.
(nxml-ns-prefixes-for): Avoid add-to-list.
* lisp/nxml/nxml-util.el: Use lexical-binding.
(nxml-with-degradation-on-error, nxml-with-invisible-motion):
Use `declare'.
* lisp/nxml/rng-match.el: Use lexical-binding.
(rng--ipattern): Use cl-defstruct.
(rng-compute-start-tag-open-deriv, rng-compute-start-attribute-deriv)
(rng-cons-group-after, rng-subst-group-after)
(rng-subst-interleave-after, rng-apply-after, rng-compute-data-deriv):
Use closures instead of `(lambda...).
* lisp/nxml/xmltok.el: Use lexical-binding.
(xmltok-save): Use `declare'.
(xmltok-unclosed-reparse-p, xmltok-semi-closed-reparse-p): Remove.
Dmitry Gutov [Mon, 7 Oct 2013 13:27:29 +0000 (16:27 +0300)]
* test/indent/ruby.rb: Fix a spurious change, add more failing examples.
Michael Albinus [Mon, 7 Oct 2013 12:48:18 +0000 (14:48 +0200)]
* trampver.texi: Update release number.
Michael Albinus [Mon, 7 Oct 2013 12:45:20 +0000 (14:45 +0200)]
* net/tramp.el (tramp-handle-insert-file-contents): Improve handling
of BEG and END.
* net/tramp-gvfs.el (tramp-gvfs-file-name-handler-alist): Use
`tramp-handle-insert-file-contents'.
(tramp-gvfs-handle-insert-file-contents): Remove function.
* net/tramp-sh.el (tramp-sh-handle-insert-directory): Use
`save-restriction' in order to keep markers.
* net/trampver.el: Update release number.
Dmitry Antipov [Mon, 7 Oct 2013 10:27:48 +0000 (14:27 +0400)]
* alloc.c (Fmake_string): Fix last change.
Paul Eggert [Mon, 7 Oct 2013 08:05:00 +0000 (01:05 -0700)]
emacs_read and emacs_write now use void *, not char *.
* alloc.c (valid_pointer_p) [!WINDOWSNT]: Remove now-unnecessary cast.
* sysdep.c (emacs_read, emacs_write, emacs_write_sig):
Buffer arg is now void *, not char *. This matches plain
'read' and 'write' better, and avoids a constraint violation
on Solaris 9 with Oracle Studio.
Dmitry Antipov [Mon, 7 Oct 2013 07:15:37 +0000 (11:15 +0400)]
* alloc.c (Fmake_string): For ASCII char initializer, prefer
memset to explicit loop. Otherwise copy largest possible chunk
from initialized to uninitialized part, thus allowing the longer
memcpy runs and reducing the number of loop iterations.
Stefan Monnier [Mon, 7 Oct 2013 05:15:48 +0000 (01:15 -0400)]
* lisp/progmodes/compile.el (compilation-parse-errors):
Use compilation--put-prop.
(compilation--ensure-parse): Check compilation-multiline.
Stefan Monnier [Mon, 7 Oct 2013 05:13:51 +0000 (01:13 -0400)]
* lisp/emacs-lisp/easymenu.el (easy-menu-create-menu): Use closures.
Stefan Monnier [Mon, 7 Oct 2013 05:11:50 +0000 (01:11 -0400)]
* lisp/emacs-lisp/lisp-mode.el (eval-defun-2): Simplify, using lexical-binding.
Stefan Monnier [Mon, 7 Oct 2013 05:10:06 +0000 (01:10 -0400)]
* lisp/emacs-lisp/tq.el (tq-create): Use a closure instead of `(lambda...).
Stefan Monnier [Mon, 7 Oct 2013 03:46:32 +0000 (23:46 -0400)]
* doc/lispref/tips.texi (Comment Tips): Discourage use of triple semi-colons
for non-headings.
Stefan Monnier [Mon, 7 Oct 2013 03:38:26 +0000 (23:38 -0400)]
* lisp/progmodes/ruby-mode.el: Fix recently added tests.
(ruby-smie-grammar): Add - and +.
(ruby-smie--redundant-do-p, ruby-smie--forward-id)
(ruby-smie--backward-id): New functions.
(ruby-smie--forward-token, ruby-smie--backward-token): Use them.
(ruby-smie-rules): Handle hanging do. Get rid of hack, not needed
any more.
* test/indent/ruby.rb: Add a few more tests; adjust some indentation.
Leo Liu [Mon, 7 Oct 2013 03:34:26 +0000 (11:34 +0800)]
* etc/NEWS: Mention new feature of register commands.
Leo Liu [Mon, 7 Oct 2013 01:28:34 +0000 (09:28 +0800)]
* register.el (register-preview-delay)
(register-preview-functions): New variables.
(register-read-with-preview, register-preview)
(register-describe-oneline): New functions.
(point-to-register, window-configuration-to-register)
(frame-configuration-to-register, jump-to-register)
(number-to-register, view-register, insert-register)
(copy-to-register, append-to-register, prepend-to-register)
(copy-rectangle-to-register): Use register-read-with-preview to
read register.
Fixes: debbugs:15525
Dmitry Gutov [Sun, 6 Oct 2013 21:34:40 +0000 (00:34 +0300)]
* indent/ruby.rb: Fix a factual error.
Dato Simó [Sun, 6 Oct 2013 17:14:11 +0000 (19:14 +0200)]
* net/network-stream.el (network-stream-open-starttls): Don't add
--insecure if it's already present, because that gnutls-cli
rejects getting that parameter twice.
Jan Djärv [Sun, 6 Oct 2013 15:59:11 +0000 (17:59 +0200)]
Don't force auto hide dock when hide menu changes.
(ns_update_auto_hide_menu_bar): Remove runtime check.
Don't auto hide dock unless menubar is also auto hidden.
Jan Djärv [Sun, 6 Oct 2013 15:53:30 +0000 (17:53 +0200)]
* nsterm.m (ns_update_begin): If native fullscreen and no toolbar,
hide toolbar.
(windowDidEnterFullScreen:): If presentation options are zero,
set them here (Bug#15388).
Xue Fuqiao [Sun, 6 Oct 2013 09:46:04 +0000 (17:46 +0800)]
Remove unnecessary @refill.
Dmitry Gutov [Sun, 6 Oct 2013 01:21:51 +0000 (04:21 +0300)]
* test/automated/ruby-mode-tests.el: Add tests for `ruby-forward-sexp'
and `ruby-backward-sexp' that fail when `ruby-use-smie' is t.
* test/indent/ruby.rb: Two more failing examples.
Dmitry Gutov [Sun, 6 Oct 2013 00:46:28 +0000 (03:46 +0300)]
* lisp/progmodes/ruby-mode.el (ruby-smie-rules): Dedent `ensure'
keyword, too.
* test/indent/ruby.rb: Fix a syntax error, add a few failing examples.
Dmitry Gutov [Sat, 5 Oct 2013 23:40:16 +0000 (02:40 +0300)]
* lisp/newcomment.el (comment-use-global-state): Change default value
to t, mark obsolete.
(comment-beginning): In addition to `comment-to-syntax', check the
value of `comment-use-global-state'.
Fixes: debbugs:15251
Stefan Monnier [Sat, 5 Oct 2013 18:37:08 +0000 (14:37 -0400)]
Get Ruby's SMIE code to pass the test suite.
* lisp/progmodes/ruby-mode.el (ruby-use-smie): Change default.
(ruby-comment-column): Follow the global default, by default.
(ruby-smie-grammar): Add assignment syntax.
(ruby-smie--implicit-semi-p): No implicit semi-colon after an
open-paren, a comma, or a \.
(ruby-smie--forward-token, ruby-smie--backward-token): Handle heredocs,
and line continuations.
(ruby-smie-rules): Adjust handling of open-paren, now that it's never
followed by implicit semi-colons. Add rule for string concatenation
and for indentation at BOB.
(ruby-forward-sexp, ruby-backward-sexp): Adjust for when smie is in use.
* lisp/emacs-lisp/smie.el (smie-next-sexp): Don't go back to pos before
calling next-sexp, since next-token may have skipped chars which
next-sexp doesn't know should be skipped!
* test/indent/ruby.rb: Port a few cases from automated/ruby-mode-tests.el.
Adjust indentation of continued line to the new SMIE behavior.
Dmitry Gutov [Sat, 5 Oct 2013 17:21:22 +0000 (20:21 +0300)]
Revert 2013-10-05T02:26:39Z!dgutov@yandex.ru
`last-coding-system-used' is unreliable: it can be modified by other functions
in `after-save-hook'.
Xue Fuqiao [Sat, 5 Oct 2013 15:06:17 +0000 (23:06 +0800)]
Minor doc fixes.
Jan Djärv [Sat, 5 Oct 2013 14:41:10 +0000 (16:41 +0200)]
* nsterm.m (check_native_fs): Remove erroneous comment.
Xue Fuqiao [Sat, 5 Oct 2013 11:49:02 +0000 (19:49 +0800)]
* doc/lispref/syntax.texi (Categories): Add an index for category sets.
Glenn Morris [Sat, 5 Oct 2013 10:17:33 +0000 (06:17 -0400)]
Auto-commit of generated files.
Leo Liu [Sat, 5 Oct 2013 02:45:24 +0000 (10:45 +0800)]
* progmodes/octave.el (octave-send-region): Call
compilation-forget-errors.
Dmitry Gutov [Sat, 5 Oct 2013 02:26:39 +0000 (05:26 +0300)]
* lisp/progmodes/ruby-mode.el (ruby-mode): Add `ruby-mode-set-encoding'
to `after-save-hook' instead of `before-save-hook', because then
we know exactly what encoding was used to write the file.
(ruby-mode-set-encoding): Use `last-coding-system-used' instead of
guessing. Call `basic-save-buffer-1' after modifying the buffer.
Xue Fuqiao [Fri, 4 Oct 2013 23:47:00 +0000 (07:47 +0800)]
New functions for finding the administrative directory in VC.
* vc/vc-svn.el (vc-svn-find-admin-dir):
* vc/vc-rcs.el (vc-rcs-find-admin-dir):
* vc/vc-mtn.el (vc-mtn-find-admin-dir):
* vc/vc-cvs.el (vc-cvs-find-admin-dir):
* vc/vc-arch.el (vc-arch-find-admin-dir): New functions.
Stefan Monnier [Fri, 4 Oct 2013 21:45:37 +0000 (17:45 -0400)]
* lisp/textmodes/css-mode.el (css-smie-rules): Toplevel's a list.
* test/automated/completion-tests.el:
* test/indent/css-mode.css: New files.
Fixes: debbugs:15467
Stefan Monnier [Fri, 4 Oct 2013 19:06:45 +0000 (15:06 -0400)]
* lisp/subr.el (read-passwd): Hide chars even when called within a context
where after-change-functions is disabled.
(set-temporary-overlay-map): Don't remove oneself from pre-command-hook
until we removed ourself from overriding-terminal-local-map.
Fixes: debbugs:15501
Leo Liu [Fri, 4 Oct 2013 15:11:13 +0000 (23:11 +0800)]
* progmodes/octave.el (inferior-octave-mode): Call
compilation-forget-errors.
Xue Fuqiao [Fri, 4 Oct 2013 14:46:31 +0000 (22:46 +0800)]
* lisp/emacs-lisp/syntax.el (syntax-ppss): Doc fix.
Paul Eggert [Fri, 4 Oct 2013 14:27:11 +0000 (16:27 +0200)]
In nt/gnulib.mk create <byteswap.h> from <byteswap.in.h>.
* gnulib.mk: Create <byteswap.h> from <byteswap.in.h>.
Dmitry Antipov [Fri, 4 Oct 2013 13:41:10 +0000 (17:41 +0400)]
* xdisp.c (redisplay_internal): Simplify because scan_for_column now
uses find_newline instead of scan_newline and so doesn't move point.
Michael Albinus [Fri, 4 Oct 2013 10:31:59 +0000 (12:31 +0200)]
* net/secrets.el (secrets-create-collection): Add optional
argument ALIAS. Use proper Label keyword. Append ALIAS as
dbus-call-method argument. (Bug#15516)
Glenn Morris [Fri, 4 Oct 2013 10:17:40 +0000 (06:17 -0400)]
Auto-commit of generated files.
Leo Liu [Fri, 4 Oct 2013 09:45:25 +0000 (17:45 +0800)]
* progmodes/octave.el (inferior-octave-error-regexp-alist)
(inferior-octave-compilation-font-lock-keywords): New variables.
(compilation-error-regexp-alist)
(compilation-mode-font-lock-keywords): Defvar to pacify compiler.
(inferior-octave-mode): Use compilation-shell-minor-mode.
Paul Eggert [Fri, 4 Oct 2013 07:36:22 +0000 (00:36 -0700)]
Use hardware support for byteswapping on glibc x86 etc.
On Fedora 19 x86-64, the new bswap_64 needs 1 instruction,
whereas the old swap64 needed 30.
* admin/merge-gnulib (GNULIB_MODULES): Add byteswap.
* lib/byteswap.in.h, m4/byteswap.m4: New files, copied from Gnulib.
* lib/gnulib.mk, m4/gnulib-comp.m4: Regenerate.
* src/fringe.c (init_fringe_bitmap) [WORDS_BIGENDIAN]:
* src/sound.c (le2hl, le2hs, be2hl) [!WINDOWSNT]:
Use byteswap.h's macros to swap bytes.
* src/lisp.h (swap16, swap32, swap64): Remove.
All uses replaced by bswap_16, bswap_32, bswap_64.
Paul Eggert [Fri, 4 Oct 2013 06:51:50 +0000 (23:51 -0700)]
* bytecode.c (exec_byte_code): Use some more volatile variables
to work around local variables getting clobbered by longjmp.
Port to pre-C99, which doesn't allow decls after stmts.
Jorgen Schaefer [Fri, 4 Oct 2013 02:12:16 +0000 (22:12 -0400)]
* lisp/minibuffer.el (completion--replace): Be careful that `end' might be
a marker.
Paul Eggert [Thu, 3 Oct 2013 16:16:31 +0000 (09:16 -0700)]
* lisp.h (eassert): Assume that COND is true when optimizing.
In other words, take on the behavior of eassert_and_assume.
This makes Emacs 0.2% smaller on my platform (Fedora 19, x86-64).
(eassert_and_assume): Remove. All uses replaced by eassert.
Xue Fuqiao [Thu, 3 Oct 2013 15:32:10 +0000 (23:32 +0800)]
Add an index for modify-syntax-entry.
Xue Fuqiao [Thu, 3 Oct 2013 15:09:18 +0000 (23:09 +0800)]
* doc/lispref/syntax.texi (Syntax Flags): Add an index for comment style.
Paul Eggert [Thu, 3 Oct 2013 13:55:28 +0000 (06:55 -0700)]
* xdisp.c (Qglyphless_char): Now static.
Glenn Morris [Thu, 3 Oct 2013 10:17:43 +0000 (06:17 -0400)]
Auto-commit of generated files.
Daiki Ueno [Thu, 3 Oct 2013 07:11:27 +0000 (16:11 +0900)]
Add support for package signature checking.
* lisp/emacs-lisp/package.el (url-http-file-exists-p)
(epg-make-context, epg-context-set-home-directory)
(epg-verify-string, epg-context-result-for)
(epg-signature-status, epg-signature-to-string)
(epg-check-configuration, epg-configuration)
(epg-import-keys-from-file): Declare.
(package-check-signature): New user option.
(package-unsigned-archives): New user option.
(package-desc): Add `signed' field.
(package-load-descriptor): Set `signed' field if .signed file exists.
(package--archive-file-exists-p): New function.
(package--check-signature): New function.
(package-install-from-archive): Check package signature.
(package--download-one-archive): Check archive signature.
(package-delete): Remove .signed file.
(package-import-keyring): New command.
(package-refresh-contents): Import default keyring.
(package-desc-status): Add "unsigned" status.
(describe-package-1, package-menu--print-info)
(package-menu-mark-delete, package-menu--find-upgrades)
(package-menu--status-predicate): Support "unsigned" status.
* test/automated/data/package/signed/archive-contents:
* test/automated/data/package/signed/archive-contents.sig:
* test/automated/data/package/signed/signed-good-1.0.el:
* test/automated/data/package/signed/signed-good-1.0.el.sig:
* test/automated/data/package/signed/signed-bad-1.0.el:
* test/automated/data/package/signed/signed-bad-1.0.el.sig:
* test/automated/data/package/key.pub:
* test/automated/data/package/key.sec: New files.
* test/automated/package-test.el (package-test-update-listing)
(package-test-update-archives, package-test-describe-package):
Adjust to package.el change.
(package-test-signed): New test.
Paul Eggert [Thu, 3 Oct 2013 07:06:52 +0000 (00:06 -0700)]
Merge from gnulib.
* src/conf_post.h (__has_builtin, assume): Remove; gnulib now does these.
* src/lisp.h: Include <verify.h>, for 'assume'.
This also incorpoprates:
2013-10-02 verify: new macro 'assume'
2013-09-26 dup2, dup3: work around another cygwin crasher
2013-09-26 getdtablesize: work around cygwin issue
Paul Eggert [Thu, 3 Oct 2013 06:31:06 +0000 (23:31 -0700)]
* eval.c (clobbered_eassert): New macro.
(internal_catch, internal_condition_case)
(internal_condition_case_1, internal_condition_case_2)
(internal_condition_case_n): Use it instead of eassert
when the argument contains locals clobbered by longjmp.
Don't use clobbered locals outside of clobbered_eassert.
(internal_lisp_condition_case): Use a volatile variable
to work around a local variable's getting clobbered.
Stefan Monnier [Thu, 3 Oct 2013 04:58:56 +0000 (00:58 -0400)]
Introduce new bytecodes for efficient catch/condition-case in lexbind.
* lisp/emacs-lisp/byte-opt.el (byte-optimize-form-code-walker):
Optimize under `condition-case' and `catch' if
byte-compile--use-old-handlers is nil.
(disassemble-offset): Handle new bytecodes.
* lisp/emacs-lisp/bytecomp.el (byte-pushcatch, byte-pushconditioncase)
(byte-pophandler): New byte codes.
(byte-goto-ops): Adjust accordingly.
(byte-compile--use-old-handlers): New var.
(byte-compile-catch): Use new byte codes depending on
byte-compile--use-old-handlers.
(byte-compile-condition-case--old): Rename from
byte-compile-condition-case.
(byte-compile-condition-case--new): New function.
(byte-compile-condition-case): New function that dispatches depending
on byte-compile--use-old-handlers.
(byte-compile-unwind-protect): Pass a function to byte-unwind-protect
when we can.
* lisp/emacs-lisp/cconv.el (cconv-convert, cconv-analyse-form): Adjust for
the new compilation scheme using the new byte-codes.
* src/alloc.c (Fgarbage_collect): Merge scans of handlerlist and catchlist,
and make them unconditional now that they're heap-allocated.
* src/bytecode.c (BYTE_CODES): Add Bpushcatch, Bpushconditioncase
and Bpophandler.
(bcall0): New function.
(exec_byte_code): Add corresponding cases. Improve error message when
encountering an invalid byte-code. Let Bunwind_protect accept
a function (rather than a list of expressions) as argument.
* src/eval.c (catchlist): Remove (merge with handlerlist).
(handlerlist, lisp_eval_depth): Not static any more.
(internal_catch, internal_condition_case, internal_condition_case_1)
(internal_condition_case_2, internal_condition_case_n):
Use PUSH_HANDLER.
(unwind_to_catch, Fthrow, Fsignal): Adjust to merged
handlerlist/catchlist.
(internal_lisp_condition_case): Use PUSH_HANDLER. Adjust to new
handlerlist which can only handle a single condition-case handler at
a time.
(find_handler_clause): Simplify since we only a single branch here
any more.
* src/lisp.h (struct handler): Merge struct handler and struct catchtag.
(PUSH_HANDLER): New macro.
(catchlist): Remove.
(handlerlist): Always declare.
Stefan Monnier [Thu, 3 Oct 2013 04:41:23 +0000 (00:41 -0400)]
* lisp/subr.el (decode-char, encode-char): Use advertised-calling-convention
instead of the docstring to discourage use of the `restriction' arg.
(error): Use `declare'.
* src/charset.c (Fdecode_char, Fencode_char): Remove description of
`restriction' arg. now that it's hidden by advertised-calling-convention.
Daiki Ueno [Thu, 3 Oct 2013 01:29:17 +0000 (10:29 +0900)]
epg: doc improvement for verify functions
* epg.el (epg-verify-file): Add a comment saying that it does not
notify verification error as a return value nor a signal.
(epg-verify-string): Ditto.
Kevin Rodgers [Wed, 2 Oct 2013 23:33:48 +0000 (19:33 -0400)]
* lisp/progmodes/compile.el (compilation-start): Try globbing the arg to `cd'.
Fixes: debbugs:15417
Jan Djärv [Wed, 2 Oct 2013 18:52:34 +0000 (20:52 +0200)]
* macfont.m (macfont_draw): Use s->ybase for correct y position.
Dmitry Antipov [Wed, 2 Oct 2013 15:38:12 +0000 (19:38 +0400)]
* frame.h (struct frame): Drop has_minibuffer member because...
(FRAME_HAS_MINIBUF_P): ...this macro can be implemented without it.
* frame.c (make_frame, make_minibuffer_frame): Adjust users.
Xue Fuqiao [Wed, 2 Oct 2013 15:14:06 +0000 (23:14 +0800)]
Add an index for the table of syntax classes.
* doc/lispref/syntax.texi (Syntax Class Table): Add an index for syntax class table.
Michael Albinus [Wed, 2 Oct 2013 13:52:32 +0000 (15:52 +0200)]
Sync with Tramp 2.2.8.
* tramp.texi (External packages): Use `non-essential'.
* trampver.texi: Update release number.
Michael Albinus [Wed, 2 Oct 2013 13:48:20 +0000 (15:48 +0200)]
Sync with Tramp 2.2.8.
* net/tramp-cmds.el (tramp-bug, tramp-append-tramp-buffers):
* net/tramp-cache.el (tramp-cache-print): Use `tramp-compat-funcall'.
* net/trampver.el: Update release number.
Dmitry Antipov [Wed, 2 Oct 2013 12:08:27 +0000 (16:08 +0400)]
* window.h (struct window): Prefer enum text_cursor_kinds to int
for phys_cursor_type member. Move the latter, phys_cursor_width,
phys_cursor_ascent and phys_cursor_height under HAVE_WINDOW_SYSTEM.
* window.c (replace_window, make_window): Adjust users.
Dmitry Antipov [Wed, 2 Oct 2013 11:49:24 +0000 (15:49 +0400)]
* fringe.c (toplevel): Do not use HAVE_WINDOW_SYSTEM because
this module is never compiled otherwise.
Alp Aker [Wed, 2 Oct 2013 03:26:29 +0000 (23:26 -0400)]
* macfont.m (macfont_draw): Use CGRectMake rather than NSMakeRect
(Bug#15500).
Fabrice Niessen [Wed, 2 Oct 2013 03:09:31 +0000 (06:09 +0300)]
* themes/leuven-theme.el: Add Commentary and some headers, update
face definitions, add autoload block which is used when
distributed separately from Emacs.
Jan Djärv [Tue, 1 Oct 2013 18:22:48 +0000 (20:22 +0200)]
* lisp/term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
and default-process-coding-system for darwin only.
Stefan Monnier [Tue, 1 Oct 2013 15:52:53 +0000 (11:52 -0400)]
* lisp/emacs-lisp/package.el (package-desc): Simplify.
Fixes: debbugs:15495
Mitchel Humpherys [Tue, 1 Oct 2013 15:34:14 +0000 (11:34 -0400)]
* lisp/vc/vc-git.el (vc-git-grep): Disable pager.
Glenn Morris [Tue, 1 Oct 2013 10:17:41 +0000 (06:17 -0400)]
Auto-commit of loaddefs files.
Dmitry Gutov [Tue, 1 Oct 2013 01:38:37 +0000 (04:38 +0300)]
* lisp/emacs-lisp/package.el (package-buffer-info, describe-package-1):
Use :url instead of :homepage, as per
http://lists.gnu.org/archive/html/emacs-devel/2013-09/msg00622.html
* test/automated/package-test.el: Update all cases to use :url instead
of :homepage.
* test/automated/package-x-test.el
(package-x-test--single-archive-entry-1-3): Same.
Dmitry Gutov [Tue, 1 Oct 2013 01:13:48 +0000 (04:13 +0300)]
* lisp/newcomment.el (comment-beginning): When `comment-use-syntax' is
non-nil, use `syntax-ppss'.
Fixes: debbugs:15251
Rüdiger Sonderfeld [Mon, 30 Sep 2013 01:13:19 +0000 (09:13 +0800)]
* progmodes/octave.el (inferior-octave-startup-file): Prefer
~/.emacs.d/init_octave.m.
Dmitry Gutov [Sun, 29 Sep 2013 19:41:00 +0000 (22:41 +0300)]
* lisp/emacs-lisp/package-x.el (package-upload-buffer-internal): Pass
`extras' slot from `package-desc' to `package-make-ac-desc'.
* lisp/emacs-lisp/package.el (package-desc-from-define): Accept
additional arguments as plist, convert it to an alist and store it
in the `extras' slot.
(package-generate-description-file): Convert extras alist back to
plist and append to the `define-package' form arguments.
(package--alist-to-plist): New function.
(package--ac-desc): Add `extras' slot.
(package--add-to-archive-contents): Check if the archive-contents
vector is long enough, and if it is, pass its `extras' slot value
to `package-desc-create'.
(package-buffer-info): Call `lm-homepage', pass the returned value
to `package-desc-from-define'.
(describe-package-1): Render the homepage button.
* test/automated/package-test.el (simple-single-desc-1-4): Remove, it
was unused.
(simple-single-desc): Expect :homepage property.
(multi-file-desc): Same.
(with-package-test): Do not save previous `default-directory'
value, let-bind the var instead.
(package-test-install-single): Expect :homepage property in the
generated pkg file.
(package-test-describe-package): Expect Homepage button.
(package-test-describe-non-installed-package)
(package-test-describe-non-installed-multi-file-package): Same.
(package-test-describe-not-installed-package): Remove, it was a
duplicate.
* test/automated/package-x-test.el
(package-x-test--single-archive-entry-1-3): Expect :homepage
property.
(package-x-test--single-archive-entry-1-4): Expect nil extras slot.
* test/automated/data/package/archive-contents: Add :homepage
properties to `simple-single' and `multi-file'.
* test/automated/data/package/simple-single-1.3.el: Add URL header.
Fixes: debbugs:13291
Jan Djärv [Sun, 29 Sep 2013 17:09:39 +0000 (19:09 +0200)]
* term/ns-win.el (ns-initialize-window-system): Set locale-coding-system
and default-process-coding-system to utf-8-unix.
Fixes: debbugs:15402
Eli Zaretskii [Sun, 29 Sep 2013 16:27:09 +0000 (19:27 +0300)]
Fix bug #15484 with link error in the --without-x configuration.
src/xdisp.c (get_next_display_element): Don't call face_for_font in
a build configured --without-x.
Jan Djärv [Sun, 29 Sep 2013 16:18:55 +0000 (18:18 +0200)]
* window.c (calc_absolute_offset): #elif should be #elif defined.
Jan Djärv [Sun, 29 Sep 2013 10:21:58 +0000 (12:21 +0200)]
* frame.c (delete_frame): Block/unblock input to overcome race
condition.
Fixes: debbugs:15475